}
static void
-gdk_wayland_window_sync_transient_for (GdkWindow *window)
+gdk_wayland_window_sync_parent (GdkWindow *window)
{
GdkWindowImplWayland *impl = GDK_WINDOW_IMPL_WAYLAND (window->impl);
- struct wl_surface *transient_for_surface;
+ struct wl_surface *parent_surface;
if (!impl->xdg_surface)
return;
if (!impl_parent->surface)
return;
- transient_for_surface = impl_parent->surface;
+ parent_surface = impl_parent->surface;
}
else
- transient_for_surface = NULL;
+ parent_surface = NULL;
- xdg_surface_set_transient_for (impl->xdg_surface, transient_for_surface);
+ xdg_surface_set_parent (impl->xdg_surface, parent_surface);
}
static void
impl->xdg_surface = xdg_shell_get_xdg_surface (display_wayland->xdg_shell, impl->surface);
xdg_surface_add_listener (impl->xdg_surface, &xdg_surface_listener, window);
- gdk_wayland_window_sync_transient_for (window);
+ gdk_wayland_window_sync_parent (window);
gdk_wayland_window_sync_title (window);
gdk_wayland_window_sync_margin (window);
xdg_surface_set_app_id (impl->xdg_surface, gdk_get_program_class ());
impl = GDK_WINDOW_IMPL_WAYLAND (window->impl);
impl->transient_for = parent;
- gdk_wayland_window_sync_transient_for (window);
+ gdk_wayland_window_sync_parent (window);
}
static void
</description>
</request>
- <request name="set_transient_for">
+ <request name="set_parent">
<description summary="surface is a child of another surface">
- Setting a surface as transient of another means that it is child
- of another surface.
-
Child surfaces are stacked above their parents, and will be
unmapped if the parent is unmapped too. They should not appear
on task bars and alt+tab.